-
Notifications
You must be signed in to change notification settings - Fork 511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
layout_enclosures #677
base: master
Are you sure you want to change the base?
layout_enclosures #677
Conversation
YevgeniyaVoronina
commented
Mar 23, 2021
•
edited
Loading
edited
- DEMO LINK
- TEST REPORT LINK
src/index.html
Outdated
<section class="section"> | ||
<div class="text"> | ||
In programming languages, a closure is a technique for implementing lexically scoped name binding in a language with first-class functions. Operationally, a closure is a record storing a function together with an environment. | ||
</div> | ||
</section> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
watch yesterday's lecture till minute 8 and configure VScode auto-formatting for wrapping lines with more than 80 symbols
https://www.youtube.com/watch?v=ScTyxXA8SA8&list=PL7FuXFaDeEX0sQ0Zhwk2ixfwS1P6e0iuW&index=5
src/style.css
Outdated
background-color: #ddd; | ||
padding: 10px; | ||
border: 1px solid #e95d49; | ||
margin: 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you've already add margin: 0 to all elements on the page
margin: 0; |
* { | ||
box-sizing: border-box; | ||
padding: 0; | ||
margin: 0; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
move this styles up (before body)